home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / MacPerl / MPPreferences.h < prev    next >
Text File  |  1993-12-09  |  863b  |  37 lines

  1. /*********************************************************************
  2. Project    :    MacPerl                -    Real Perl Application
  3. File        :    MPPreferences.h    -    Handle Preference Settings
  4. Author    :    Matthias Neeracher
  5.  
  6. A lot of this code is borrowed from 7Edit written by
  7. Apple Developer Support UK
  8.  
  9. Started    :    08Dec93                                Language    :    MPW C
  10. Modified    :    08Dec93    MN
  11. Last        :    08Dec93
  12. *********************************************************************/
  13.  
  14. #ifndef __MPPREFERENCES__
  15. #define __MPPREFERENCES__
  16.  
  17. #include <Types.h>
  18. #include <QuickDraw.h>
  19. #include <Packages.h>
  20. #include <GestaltEqu.h>
  21. #include <Editions.h>
  22. #include <Printing.h>
  23.  
  24. #ifndef __MPGLOBALS__
  25. #include "MPGlobals.h"
  26. #endif
  27.  
  28. pascal void OpenPreferenceFile(FSSpec * spec);
  29.  
  30. pascal void OpenPreferences();
  31.  
  32. pascal void DoPrefDialog();
  33.  
  34. pascal Boolean DoFormatDialog(DocFormat * format, Boolean * defaultFormat);
  35.  
  36. #endif
  37.